Conditions | 1 |
Total Lines | 8 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import { BaseEndpoint } from './baseEndpoint'; |
||
17 | |||
18 | /** |
||
19 | * Get the list of official genres for TV shows. |
||
20 | * @return { Promise<GenresResponse> } |
||
21 | * @see https://developers.themoviedb.org/3/genres/get-tv-list |
||
22 | */ |
||
23 | public async tv(): Promise<GenresResponse> { |
||
24 | return this.sendGetRequest('genre/tv/list'); |
||
25 | } |
||
28 |